home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / comm / msged400.zip / src / mcompile.h < prev    next >
C/C++ Source or Header  |  1996-06-20  |  515b  |  33 lines

  1. /*
  2.  *  MCOMPILE.H
  3.  *
  4.  *  Written on 30-Jul-90 by jim nutt.  Changes on 10-Jul-94 by John Dennis.
  5.  *  Released to the public domain.
  6.  *
  7.  *  Miscellaneous macro definitions.
  8.  */
  9.  
  10. #ifndef MCOMPILE_H_INCLUDED
  11. #define MCOMPILE_H_INCLUDED
  12.  
  13. #ifndef max
  14. #define max(a,b)  (((a) > (b)) ? (a) : (b))
  15. #endif
  16.  
  17. #ifndef min
  18. #define min(a,b)  (((a) < (b)) ? (a) : (b))
  19. #endif
  20.  
  21. #ifndef FALSE
  22. #define FALSE  0
  23. #endif
  24. #ifndef TRUE
  25. #define TRUE   1
  26. #endif
  27.  
  28. #ifdef PATHLEN
  29. #undef PATHLEN
  30. #endif
  31.  
  32. #endif
  33.